This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Err .. ~Paul Ektoogenjip 28.Nov.03 05:11 PM a Web browser Applications Development 6.0.2 CF2Windows 2000
Surpises are why we love Notes/domino ;)
I agree that RemoveAll is more efficient, unless you need to do some pre processing related to each document in the doccol, which is what was suggested in the original post:
Dim doc as NotesDocument
Set doc = col.getFirstDocument
While not(doc is nothing)
...
...
...
Dim delDoc = doc
Set doc = col.GetNextDocument(doc)
delDoc.Remove(true)
Wend